From: Kim F. Storm Date: Fri, 11 Jun 2004 21:48:22 +0000 (+0000) Subject: (shut_down_emacs): Inhibit redisplay during shutdown. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~22042 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=af2180cc9fa69293f5a4f73a5179e4af21220627;p=emacs.git (shut_down_emacs): Inhibit redisplay during shutdown. --- diff --git a/src/emacs.c b/src/emacs.c index 7f311dbe3b0..7535c607599 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -206,6 +206,8 @@ extern Lisp_Object Vwindow_system; extern Lisp_Object Vauto_save_list_file_name; +extern Lisp_Object Vinhibit_redisplay; + #ifdef USG_SHARED_LIBRARIES /* If nonzero, this is the place to put the end of the writable segment at startup. */ @@ -2009,6 +2011,9 @@ shut_down_emacs (sig, no_x, stuff) /* Prevent running of hooks from now on. */ Vrun_hooks = Qnil; + /* Don't update display from now on. */ + Vinhibit_redisplay = Qt; + /* If we are controlling the terminal, reset terminal modes. */ #ifdef EMACS_HAVE_TTY_PGRP {